home *** CD-ROM | disk | FTP | other *** search
/ The Very Best of Atari Inside / The Very Best of Atari Inside 1.iso / mint / mntlib43 / mntlib / abs.c < prev    next >
C/C++ Source or Header  |  1994-01-15  |  205b  |  18 lines

  1. /* return absolute values */
  2. #include <stdlib.h>
  3.  
  4. #ifdef abs
  5. #undef abs
  6. #endif
  7. #ifdef labs
  8. #undef labs
  9. #endif
  10.  
  11. int abs(x)
  12. int x;
  13. { return x < 0 ? -x : x; }
  14.  
  15. long labs(x)
  16. long x;
  17. { return x < 0 ? -x : x; }
  18.